home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 20 / Cream of the Crop 20 (Terry Blount) (1996).iso / program / file2inc.zip / EXAMPLE.PAS < prev    next >
Pascal/Delphi Source File  |  1996-05-21  |  195b  |  12 lines

  1. Program Example_of_File2Inc;
  2. uses crt;
  3.  
  4. {$I example.inc}
  5.  
  6. var index:longint;
  7. begin
  8.  clrscr;
  9.  for index:=0 to examplesize do
  10.   write(chr(example[index]));
  11.  repeat until keypressed;
  12. end.